home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH02_2.C < prev    next >
Text File  |  1994-05-15  |  195b  |  17 lines

  1. main()
  2. {
  3.    printf("John Q. Doe\n");
  4.    printf("1234 Main Street\n");
  5.    printf("(505) 555-1212\n");
  6. }
  7.  
  8.  
  9.  
  10. /* Result of execution
  11.  
  12. John Q. Doe
  13. 1234 Main Street
  14. (505) 555-1212
  15.  
  16. */
  17.